home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib43 / mntlib / findfile.c < prev    next >
C/C++ Source or Header  |  1994-01-15  |  305b  |  14 lines

  1. #include <compiler.h>
  2. #include <limits.h>    /* needed for PATH_MAX */
  3. #include <support.h>
  4.  
  5. char *
  6. findfile(fname, fpath, fext)
  7.         const char *fname, *fpath;
  8.     char *const *fext;
  9. {
  10.       /* simply calls _buffindfile */
  11.       static char try[PATH_MAX];
  12.       return _buffindfile(fname,fpath,fext,try);
  13. }
  14.